home *** CD-ROM | disk | FTP | other *** search
- Path: lrz-muenchen.de!news
- From: watzka@stat.uni-muenchen.de (Kurt Watzka)
- Newsgroups: comp.lang.c
- Subject: Re: Need help reading EXCEL documents
- Date: 10 Apr 1996 19:45:44 GMT
- Organization: Leibniz-Rechenzentrum, Muenchen (Germany)
- Distribution: world
- Message-ID: <4kh358$9vg@sparcserver.lrz-muenchen.de>
- References: <4kgkaa$r16@news2.cais.com>
- NNTP-Posting-Host: sun2.lrz-muenchen.de
-
- sandy@bitware.com (Sandy Bittman) writes:
-
- >Does anyone know of a way to open a .xls file and read it. I am using
- >MS Visual C++ if that is any help.
-
- FILE *fp;
-
- fp = fopen("foo.xls", "rb");
-
- You can read the file with fread(). For information about the _format_
- of such a file, try to refer to the vendor of the program that creates
- that file.
-
- Kurt
- --
- | Kurt Watzka Phone : +49-89-2180-6254
- | watzka@stat.uni-muenchen.de
-
-